Jira Cloud Agentic Workflow
Browser: Create Issue — Jira Cloud Automation Workflow
Navigate to Jira create issue form, fill fields, and submit
sidebutton install Jira Cloud Inputs
- project
- string
- summary
- string
- description
- string
Allowed Domains
Unrestricted — no domain lock enforced.
Step Summary
8 steps using step types: browser.clickbrowser.navigatebrowser.snapshotbrowser.typebrowser.wait
.
Workflow Definition
YAML source for the jira_browser_create_issue.yaml workflow. This is the complete definition executed by the SideButton MCP server when Jira Cloud agents run this automation.
schema_version: 1
version: "1.0.0"
last_verified: "2026-02-09"
id: jira_browser_create_issue
title: "Browser: Create Issue"
description: "Navigate to Jira create issue form, fill fields, and submit"
category:
level: task
domain: engineering
reusable: true
params:
project: string
summary: string
description: string
steps:
- type: browser.navigate
url: "{{env.JIRA_BROWSER_URL}}/secure/CreateIssue!default.jspa"
- type: browser.wait
selector: "#summary"
timeout: 10000
- type: browser.snapshot
as: create_form
- type: browser.type
selector: "#summary"
text: "{{summary}}"
- type: browser.type
selector: "#description"
text: "{{description}}"
- type: browser.click
selector: "#create-issue-submit"
- type: browser.wait
ms: 2000
- type: browser.snapshot
as: result
How To Run
Install the Jira Cloud knowledge pack into your SideButton agent, then dispatch this workflow by its ID jira_browser_create_issue.yaml. Agents invoke it directly via the MCP protocol or through the portal.